home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / sossnt.zip / SOSSNT / SRC / DTIME.H < prev    next >
C/C++ Source or Header  |  1993-02-27  |  355b  |  13 lines

  1. /*
  2.  *  dtime.h -- interface file to dos to unix time conversion routines.
  3.  *
  4.  *  Author: See-Mong Tan
  5.  */
  6.  
  7.   /* initialize time module */
  8. extern bool_t dtime_init(void);
  9.   /* converts dos to unix style time */
  10. extern long unixtime(unsigned, unsigned);
  11.   /* converts unix to dos style time */
  12. extern void dostime(long, unsigned *, unsigned *);
  13.